test/test_initialization.rb in expectr-1.0.3 vs test/test_initialization.rb in expectr-1.1.0

- old
+ new

@@ -7,10 +7,10 @@ def test_spawn_with_string assert_nothing_raised { exp = Expectr.new(File.new("/bin/ls"), flush_buffer: false) } end - # lib/expectr.rb's permissions should hopefully be set to 0644 + # lib/expectr.rb's permissions should be set to 0644 def test_spawn_failures assert_raises(Errno::ENOENT) { exp = Expectr.new("lib/ThisFileShouldNotExist", flush_buffer: false) } assert_raises(Errno::EACCES) { exp = Expectr.new("lib/expectr.rb", flush_buffer: false) } end end