File: byte_array_spec.rb

package info (click to toggle)
ruby-extlib 0.9.16-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 568 kB
  • ctags: 487
  • sloc: ruby: 7,014; 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