mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 08:55:40 +02:00
Another batch of command tests (#4496)
* Add a batch of command tests * More tests
This commit is contained in:
@ -1,9 +1,7 @@
|
||||
use nu_test_support::{nu, pipeline};
|
||||
|
||||
// FIXME: jt: needs more work
|
||||
#[ignore]
|
||||
#[test]
|
||||
fn generates_an_decimal() {
|
||||
fn generates_a_decimal() {
|
||||
let actual = nu!(
|
||||
cwd: ".", pipeline(
|
||||
r#"
|
||||
@ -14,8 +12,6 @@ fn generates_an_decimal() {
|
||||
assert!(actual.out.contains("42") || actual.out.contains("43"));
|
||||
}
|
||||
|
||||
// FIXME: jt: needs more work
|
||||
#[ignore]
|
||||
#[test]
|
||||
fn generates_55() {
|
||||
let actual = nu!(
|
||||
@ -28,8 +24,6 @@ fn generates_55() {
|
||||
assert!(actual.out.contains("55"));
|
||||
}
|
||||
|
||||
// FIXME: jt: needs more work
|
||||
#[ignore]
|
||||
#[test]
|
||||
fn generates_0() {
|
||||
let actual = nu!(
|
||||
|
@ -24,8 +24,6 @@ fn generates_55() {
|
||||
assert!(actual.out.contains("55"));
|
||||
}
|
||||
|
||||
// FIXME: jt: needs more work
|
||||
#[ignore]
|
||||
#[test]
|
||||
fn generates_0() {
|
||||
let actual = nu!(
|
||||
|
Reference in New Issue
Block a user