mirror of
https://github.com/nushell/nushell.git
synced 2025-08-15 10:03:21 +02:00
Initial SQLite functionality (#5182)
* Add SQLite functionality to open * Add in-memory SQLite tests * clippy fixes * Fix up old SQLite-related tests
This commit is contained in:
@ -93,7 +93,7 @@ fn md5_works_with_file() {
|
||||
let actual = nu!(
|
||||
cwd: "tests/fixtures/formats", pipeline(
|
||||
r#"
|
||||
open sample.db | hash md5
|
||||
open sample.db --raw | hash md5
|
||||
"#
|
||||
)
|
||||
);
|
||||
@ -106,7 +106,7 @@ fn sha256_works_with_file() {
|
||||
let actual = nu!(
|
||||
cwd: "tests/fixtures/formats", pipeline(
|
||||
r#"
|
||||
open sample.db | hash sha256
|
||||
open sample.db --raw | hash sha256
|
||||
"#
|
||||
)
|
||||
);
|
||||
|
Reference in New Issue
Block a user