Sha256: 990a8000de026ab43ed5abdbfb99f405b8a2a330aa0344cc154e6811367a463e
Contents?: true
Size: 480 Bytes
Versions: 2
Compression:
Stored size: 480 Bytes
Contents
require 'helper' class TestTicketmasterFogbugz < Test::Unit::TestCase context "checking for ticketmaster initialization" do should "be able to instatiate a new instance" do @fogbugz = TicketMaster.new(:fogbugz, :email => 'rafael@hybridgroup.com', :password => '12345', :uri => 'https://clutchapp.fogbugz.com') assert_equal true, @fogbugz.instance_of?(TicketMaster) assert_equal true, @fogbugz.kind_of?(TicketMaster::Provider::Fogbugz) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ticketmaster-fogbugz-0.1.1 | test/test_ticketmaster-fogbugz.rb |
ticketmaster-fogbugz-0.0.1 | test/test_ticketmaster-fogbugz.rb |