test/unit/server_tests.rb in sanford-0.9.0 vs test/unit/server_tests.rb in sanford-0.10.0
- old
+ new
@@ -1,10 +1,8 @@
require 'assert'
require 'sanford/server'
-require 'test/support/services'
-
class Sanford::Server
class UnitTests < Assert::Context
desc "Sanford::Server"
setup do
@@ -17,10 +15,10 @@
should "include DatTCP::Server" do
assert_includes DatTCP::Server, subject.class
end
- should "save it's host and host options but not initialize a host data yet" do
+ should "save its host and host options but not initialize a host data yet" do
assert_equal TestHost, subject.sanford_host
assert_equal true, subject.sanford_host_options[:receives_keep_alive]
assert_nil subject.sanford_host_data
end