Sha256: e72326ea6bc7a35694f88a743054340222496c6895e48541583651dbfb3f1e9c
Contents?: true
Size: 825 Bytes
Versions: 7
Compression:
Stored size: 825 Bytes
Contents
require 'spec_helper' class MspecRunnerTesterClr4 @solution = "spec/TestProj/TestProj/TestProj.csproj" @assemblies = ["C:/Code/Ruby Projects/prepush/spec/TestProj/TestProj/bin/Debug/TestProj.exe"] @test_runner = 'mspec' #@runner_exe = 'mspec-clr4.exe' # will be selected by default include PrePush end class MspecRunnerTesterClr2 @solution = "spec/TestProj/TestProj/TestProj.csproj" @assemblies = ["C:/Code/Ruby Projects/prepush/spec/TestProj/TestProj/bin/Debug/TestProj.exe"] @test_runner = 'mspec' @clr = :clr2 #@runner_exe = 'mspec-clr4.exe' # will be selected by default include PrePush end describe "MspecRunner" do describe "on clr 4" do before do ReplaceClr.between('v2.0', 'v3.5') end it "should compile and run tests" do MspecRunnerTesterClr4.run end end end
Version data entries
7 entries across 7 versions & 1 rubygems