Sha256: c0b1bed4cb872c00115d9359cac23b4ab33f49f87e6b511b2befa4f4a403de4c
Contents?: true
Size: 604 Bytes
Versions: 3
Compression:
Stored size: 604 Bytes
Contents
require 'spec_helper' class NunitRunnerTester @solution = "spec/TestProj/TestProj.sln" @assemblies = ["spec/TestProj/TestProj/TestProj.csproj"] @test_runner = 'nunit263' #@runner_exe = 'nunit-console.exe' # will be selected by default include PrePush end describe "NunitRunnerTester" do before do ReplaceClr.between('v2.0', 'v3.5') end it "should compile and run tests" do NunitRunnerTester.run end end describe "on clr 2" do before do ReplaceClr.between('v3.5', 'v2.0', 'TestProj2') end it "should compile and run tests" do NunitRunnerTester.run end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
pre_push-1.1.2.1 | spec/nunit_integration_spec.rb |
pre_push-1.1.2 | spec/nunit_integration_spec.rb |
pre_push-1.1.1 | spec/nunit_integration_spec.rb |