File: byte_array_spec.rb

package info (click to toggle)
ruby-extlib 0.9.15-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 560 kB
  • ctags: 487
  • sloc: ruby: 6,992; makefile: 5
file content (8 lines) | stat: -rw-r--r-- 172 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
require 'spec_helper'
require 'extlib/byte_array'

describe Extlib::ByteArray do
  it 'should be a String' do
    Extlib::ByteArray.new.should be_kind_of(String)
  end
end