Sha256: 16fc6fc424f4e5b258f9be72641644d64b195e9420beca639aade3f9b9187912

Contents?: true

Size: 473 Bytes

Versions: 2

Compression:

Stored size: 473 Bytes

Contents

require 'rake'
require 'rspec/core/rake_task'

desc "Run all rspecs"
RSpec::Core::RakeTask.new(:spec) do |t|
    t.pattern = Dir.glob('spec/**/*_spec.rb')
    t.rspec_opts = '--format documentation'
    # t.rspec_opts << ' more options'
end

desc "Run integration test on example"
task :integration_test do
    chdir("./examples/fff_example") do
        sh "rake clobber"
        sh "rake test:all"
    end
end

task :default => [:spec, :integration_test]

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ceedling-0.29.1 plugins/fake_function_framework/Rakefile
ceedling-0.29.0 plugins/fake_function_framework/Rakefile