Browse Source

Refactor spec runners to be separate tests

dev
Andy Meneely 10 years ago
parent
commit
90f319e9f5
  1. 17
      spec/samples/run_samples_spec.rb
  2. 12
      spec/samples/samples_regression_spec.rb
  3. 8
      spec/spec_helper.rb

17
spec/samples/run_samples_spec.rb

@ -0,0 +1,17 @@
require 'spec_helper'
require 'squib'
require 'pp'
describe "Squib samples" do
Dir["#{samples_dir}/**/*.rb"].each do |sample|
it "executes #{sample} with no errors", slow: true do
allow(Squib.logger).to receive(:warn) {}
allow(ProgressBar).to receive(:create).and_return(Squib::DoNothing.new)
Dir.chdir(File.dirname(sample)) do
load sample
end
end
end
end

12
spec/samples/samples_regression_spec.rb

@ -3,8 +3,6 @@ require 'squib'
require 'pp'
describe "Squib samples" do
@SAMPLES_DIR = "#{File.expand_path(File.dirname(__FILE__))}/../../samples/"
let(:samples_dir) { "#{File.expand_path(File.dirname(__FILE__))}/../../samples/" }
around(:each) do |example|
Dir.chdir(samples_dir) do
@ -12,16 +10,6 @@ describe "Squib samples" do
end
end
Dir["#{@SAMPLES_DIR}/**/*.rb"].each do |sample|
it "should execute #{sample} with no errors", slow: true do
allow(Squib.logger).to receive(:warn) {}
allow(ProgressBar).to receive(:create).and_return(Squib::DoNothing.new)
Dir.chdir(File.dirname(sample)) do
load sample
end
end
end
# This test could use some explanation
# Much of the development of Squib has been sample-driven. Every time I want
# new syntax or feature, I write a sample, get it working, and then write

8
spec/spec_helper.rb

@ -16,6 +16,14 @@ RSpec.configure do |config|
end
end
def tmp_dir
"#{File.expand_path(File.dirname(__FILE__))}/../tmp"
end
def samples_dir
File.expand_path("#{File.dirname(__FILE__)}/../samples")
end
def layout_file(str)
"#{File.expand_path(File.dirname(__FILE__))}/data/layouts/#{str}"
end

Loading…
Cancel
Save