summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/string/unpack/n_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/string/unpack/n_spec.rb')
-rw-r--r--spec/rubyspec/core/string/unpack/n_spec.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/spec/rubyspec/core/string/unpack/n_spec.rb b/spec/rubyspec/core/string/unpack/n_spec.rb
deleted file mode 100644
index 6e85346338..0000000000
--- a/spec/rubyspec/core/string/unpack/n_spec.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-require File.expand_path('../../../../spec_helper', __FILE__)
-require File.expand_path('../../fixtures/classes', __FILE__)
-require File.expand_path('../shared/basic', __FILE__)
-require File.expand_path('../shared/integer', __FILE__)
-
-describe "String#unpack with format 'N'" do
- it_behaves_like :string_unpack_basic, 'N'
- it_behaves_like :string_unpack_32bit_be, 'N'
- it_behaves_like :string_unpack_32bit_be_unsigned, 'N'
- it_behaves_like :string_unpack_no_platform, 'N'
-end
-
-describe "String#unpack with format 'n'" do
- it_behaves_like :string_unpack_basic, 'n'
- it_behaves_like :string_unpack_16bit_be, 'n'
- it_behaves_like :string_unpack_16bit_be_unsigned, 'n'
- it_behaves_like :string_unpack_no_platform, 'n'
-end