Sha256: 43c23156a6f40f1fb4758478cd5a0e0941ef177096824ac24e1b8ddf1190c499
Contents?: true
Size: 484 Bytes
Versions: 10
Compression:
Stored size: 484 Bytes
Contents
require "spec_helper" require "command/runner" which_node = Command::Runner.new("which", "node") if which_node.backend.class != Command::Runner::Backends::Backticks && which_node.run.successful? describe "Node support" do describe "with fixtures" do Dir.glob("spec/fixtures/*.yml") do |file| content = YAML.load_file file file =~ /spec\/fixtures\/(.*)\.yml/ it "generates #{$1}" do expect(content["data"]).to run end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems