Sha256: 6a3ffc02df6ca44c98180324bbc325115c1a1b0298d72846d941a23d9a165173
Contents?: true
Size: 498 Bytes
Versions: 3
Compression:
Stored size: 498 Bytes
Contents
require File.expand_path("#{File.dirname(__FILE__)}/functional_spec_helper") describe "ScrewUnit" do it "runs a full passing Suite" do mock(ScrewUnit::Client).puts("SUCCESS") ScrewUnit::Client.run(:spec_url => "#{root_url}/specs/foo/passing_spec") end it "runs a full failing Suite" do mock(ScrewUnit::Client).puts("FAILURE") mock(ScrewUnit::Client).puts('expected true to equal false') ScrewUnit::Client.run(:spec_url => "#{root_url}/specs/foo/failing_spec") end end
Version data entries
3 entries across 3 versions & 3 rubygems
Version | Path |
---|---|
btakita-screw-unit-server-0.3.0 | spec/functional/functional_spec.rb |
btakita-screw_unit-0.3.0 | spec/functional/functional_spec.rb |
screw-unit-server-0.3.0 | spec/functional/functional_spec.rb |