From d1c452bc1e036be5dc759287d5482f60d7506d2a Mon Sep 17 00:00:00 2001 From: Michael Kessler Date: Mon, 5 Sep 2011 10:07:19 +0200 Subject: [PATCH] Revert "More Travis tests." This reverts commit bd67a69a8bc5f171df6020633bddb1e7eaf303fc. --- spec/guard/listener_spec.rb | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/spec/guard/listener_spec.rb b/spec/guard/listener_spec.rb index 32c8fa5..11399e1 100644 --- a/spec/guard/listener_spec.rb +++ b/spec/guard/listener_spec.rb @@ -186,26 +186,4 @@ describe Guard::Listener do end end end - - describe "Travis test" do - let(:file) { @fixture_path.join("folder1", "test.txt") } - - it "shows the os name" do - puts `uname -a` - end - - it "runs the ctime test" do - FileUtils.touch(file) - puts "#{ File.ctime(file).to_i },#{ File.mtime(file).to_i }" - sleep 2 - FileUtils.touch(file) - puts "#{ File.ctime(file).to_i },#{ File.mtime(file).to_i }" - sleep 2 - File.open(file, 'w') do |file| - file.write('test') - end - puts "#{ File.ctime(file).to_i },#{ File.mtime(file).to_i }" - File.delete(file) - end - end end