aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core
diff options
context:
space:
mode:
authorsvn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-07 12:05:36 +0000
committersvn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-07 12:05:36 +0000
commit6bc742bc6d0dc6b1777d28484f4694af846bfb79 (patch)
treeff2f7c7a38e310905a48b31d72fb0e1f48466012 /spec/rubyspec/core
parent95e8c48dd3348503a8c7db5d0498894a1b676395 (diff)
downloadruby-6bc742bc6d0dc6b1777d28484f4694af846bfb79.tar.gz
* remove trailing spaces, append newline at EOF.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58596 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec/rubyspec/core')
-rw-r--r--spec/rubyspec/core/complex/negative_spec.rb2
-rw-r--r--spec/rubyspec/core/complex/positive_spec.rb2
-rw-r--r--spec/rubyspec/core/file/fixtures/do_not_remove1
-rw-r--r--spec/rubyspec/core/module/fixtures/path2/load_path.rb1
-rw-r--r--spec/rubyspec/core/string/encode_spec.rb2
5 files changed, 5 insertions, 3 deletions
diff --git a/spec/rubyspec/core/complex/negative_spec.rb b/spec/rubyspec/core/complex/negative_spec.rb
index 2016968efd..5b51933106 100644
--- a/spec/rubyspec/core/complex/negative_spec.rb
+++ b/spec/rubyspec/core/complex/negative_spec.rb
@@ -8,4 +8,4 @@ describe "Complex#negative?" do
c.negative?
}.should raise_error(NoMethodError)
end
-end \ No newline at end of file
+end
diff --git a/spec/rubyspec/core/complex/positive_spec.rb b/spec/rubyspec/core/complex/positive_spec.rb
index 3171cbe9b2..88898d31cf 100644
--- a/spec/rubyspec/core/complex/positive_spec.rb
+++ b/spec/rubyspec/core/complex/positive_spec.rb
@@ -8,4 +8,4 @@ describe "Complex#positive?" do
c.positive?
}.should raise_error(NoMethodError)
end
-end \ No newline at end of file
+end
diff --git a/spec/rubyspec/core/file/fixtures/do_not_remove b/spec/rubyspec/core/file/fixtures/do_not_remove
index e69de29bb2..8b13789179 100644
--- a/spec/rubyspec/core/file/fixtures/do_not_remove
+++ b/spec/rubyspec/core/file/fixtures/do_not_remove
@@ -0,0 +1 @@
+
diff --git a/spec/rubyspec/core/module/fixtures/path2/load_path.rb b/spec/rubyspec/core/module/fixtures/path2/load_path.rb
index e69de29bb2..8b13789179 100644
--- a/spec/rubyspec/core/module/fixtures/path2/load_path.rb
+++ b/spec/rubyspec/core/module/fixtures/path2/load_path.rb
@@ -0,0 +1 @@
+
diff --git a/spec/rubyspec/core/string/encode_spec.rb b/spec/rubyspec/core/string/encode_spec.rb
index 0ec592acd3..d051dd58c9 100644
--- a/spec/rubyspec/core/string/encode_spec.rb
+++ b/spec/rubyspec/core/string/encode_spec.rb
@@ -68,7 +68,7 @@ with_feature :encoding do
str = "あ"
str.force_encoding("ascii-8bit")
encoded = str.encode("utf-8", "utf-8")
-
+
encoded.should_not equal(str)
encoded.encoding.should == Encoding::UTF_8
end