spec/unit/network_packet_spec.rb in osc-ruby-1.1.3 vs spec/unit/network_packet_spec.rb in osc-ruby-1.1.4
- old
+ new
@@ -1,37 +1,37 @@
-require File.join( File.dirname(__FILE__) , '..', 'spec_helper' )
+require File.join(File.dirname(__FILE__) , '..', 'spec_helper')
describe OSC::NetworkPacket do
before :each do
- @empty = OSC::NetworkPacket.new( "" )
- @simple = OSC::NetworkPacket.new( "abc" )
+ @empty = OSC::NetworkPacket.new("")
+ @simple = OSC::NetworkPacket.new("abc")
end
-
+
it "should know if it's at the end of the stream" do
- @empty.eof?.must_equal true
+ _(@empty.eof?).must_equal(true)
end
-
+
it "should know the remainder in the stream" do
- @simple.rem.must_equal 3
+ _(@simple.rem).must_equal(3)
end
-
+
it "should be able to skip positions" do
- @simple.skip( 1 )
- @simple.rem.must_equal 2
+ @simple.skip(1)
+ _(@simple.rem).must_equal(2)
end
-
+
it "should be able to get a character from the stream" do
- @simple.getc.must_equal ?a
- @simple.getc.must_equal ?b
- @simple.getc.must_equal ?c
- @simple.eof?.must_equal true
+ _(@simple.getc).must_equal(?a)
+ _(@simple.getc).must_equal(?b)
+ _(@simple.getc).must_equal(?c)
+ _(@simple.eof?).must_equal(true)
end
-
+
it "should be able to get a number of characters from the stream" do
- @simple.getn(3).must_equal "abc"
+ _(@simple.getn(3)).must_equal("abc")
end
it "outputs characters with ASCII/BINARY encoding" do
- @simple.getc.encoding.to_s.must_equal "ASCII-8BIT"
+ _(@simple.getc.encoding.to_s).must_equal("ASCII-8BIT")
end
end