summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorAustin Ziegler <austin@zieglers.ca>2013-01-19 20:34:48 -0500
committerAustin Ziegler <austin@zieglers.ca>2013-01-19 20:34:48 -0500
commit07a0a2b43da3ebe18192d850d5650a3f94f93198 (patch)
tree423fca10b342f5556dbdf021dcf62ed88ffd6c48 /spec
parent86928fa4a2ca7a91e08571a46a98fdb42aee354d (diff)
downloaddiff-lcs-07a0a2b43da3ebe18192d850d5650a3f94f93198.tar.gz
Cleaning up unnecessary comments.
Diffstat (limited to 'spec')
-rw-r--r--spec/change_spec.rb2
-rw-r--r--spec/diff_spec.rb2
-rw-r--r--spec/issues_spec.rb2
-rw-r--r--spec/lcs_spec.rb2
-rw-r--r--spec/patch_spec.rb2
-rw-r--r--spec/sdiff_spec.rb2
-rw-r--r--spec/spec_helper.rb4
-rw-r--r--spec/traverse_balanced_spec.rb2
-rw-r--r--spec/traverse_sequences_spec.rb2
9 files changed, 0 insertions, 20 deletions
diff --git a/spec/change_spec.rb b/spec/change_spec.rb
index 152c306..dfe385f 100644
--- a/spec/change_spec.rb
+++ b/spec/change_spec.rb
@@ -63,5 +63,3 @@ describe Diff::LCS::Change do
it { should be_finished_b }
end
end
-
-# vim: ft=ruby
diff --git a/spec/diff_spec.rb b/spec/diff_spec.rb
index 81f20bb..e82ab3d 100644
--- a/spec/diff_spec.rb
+++ b/spec/diff_spec.rb
@@ -39,5 +39,3 @@ describe "Diff::LCS.diff" do
Diff::LCS.diff(hello_ary, hello_ary).should == []
end
end
-
-# vim: ft=ruby
diff --git a/spec/issues_spec.rb b/spec/issues_spec.rb
index 32a81e6..1b12825 100644
--- a/spec/issues_spec.rb
+++ b/spec/issues_spec.rb
@@ -19,5 +19,3 @@ describe "Diff::LCS Issues" do
end.to_not raise_error(RuntimeError, /provided patchset/)
end
end
-
-# vim: ft=ruby
diff --git a/spec/lcs_spec.rb b/spec/lcs_spec.rb
index addc2f7..205d563 100644
--- a/spec/lcs_spec.rb
+++ b/spec/lcs_spec.rb
@@ -52,5 +52,3 @@ describe "Diff::LCS.LCS" do
Diff::LCS.LCS(hello_ary, hello_ary).should == hello_ary
end
end
-
-# vim: ft=ruby
diff --git a/spec/patch_spec.rb b/spec/patch_spec.rb
index 72bfe85..7172aea 100644
--- a/spec/patch_spec.rb
+++ b/spec/patch_spec.rb
@@ -412,5 +412,3 @@ describe "Diff::LCS.patch" do
end
end
end
-
-# vim: ft=ruby
diff --git a/spec/sdiff_spec.rb b/spec/sdiff_spec.rb
index aa54449..c72206b 100644
--- a/spec/sdiff_spec.rb
+++ b/spec/sdiff_spec.rb
@@ -200,5 +200,3 @@ describe "Diff::LCS.sdiff" do
it_has_behavior "compare sequences correctly"
end
end
-
-# vim: ft=ruby
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 10440fc..a5ca00d 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -287,8 +287,4 @@ RSpec.configure do |conf|
conf.include Diff::LCS::SpecHelper
conf.alias_it_should_behave_like_to :it_has_behavior, 'has behavior:'
conf.filter_run_excluding :broken => true
-# conf.filter_run_including :broken => true
-# conf.filter_run_including :only => true
end
-
-# vim: ft=ruby
diff --git a/spec/traverse_balanced_spec.rb b/spec/traverse_balanced_spec.rb
index 64b97f9..63fe1eb 100644
--- a/spec/traverse_balanced_spec.rb
+++ b/spec/traverse_balanced_spec.rb
@@ -308,5 +308,3 @@ describe "Diff::LCS.traverse_balanced" do
it_has_behavior "without a #change callback", s1, s2, result
end
end
-
-# vim: ft=ruby
diff --git a/spec/traverse_sequences_spec.rb b/spec/traverse_sequences_spec.rb
index 6f396dd..f4480df 100644
--- a/spec/traverse_sequences_spec.rb
+++ b/spec/traverse_sequences_spec.rb
@@ -137,5 +137,3 @@ describe "Diff::LCS.traverse_sequences" do
end
end
end
-
-# vim: ft=ruby