Sha256: 2523b1674331cfaf1250a50f74d5e17749fbb2f872e666f0cfbc0763b05669cc
Contents?: true
Size: 342 Bytes
Versions: 101
Compression:
Stored size: 342 Bytes
Contents
extern crate hello_world; #[test] fn test_no_name() { assert_eq!("Hello, World!", hello_world::hello(None)); } #[test] #[ignore] fn test_sample_name() { assert_eq!("Hello, Alice!", hello_world::hello(Some("Alice"))); } #[test] #[ignore] fn test_other_same_name() { assert_eq!("Hello, Bob!", hello_world::hello(Some("Bob"))); }
Version data entries
101 entries across 101 versions & 1 rubygems