Sha256: 62c16ef7b4def82b3d2b4c6fa86c9873a6cb9748a73581b98d7229d8767f10e4
Contents?: true
Size: 515 Bytes
Versions: 2
Compression:
Stored size: 515 Bytes
Contents
require File.expand_path("../../spec_helper", __FILE__) module Playgroundbook describe CutscenePageLinter do include FakeFS::SpecHelpers let(:cutscene_page_linter) { CutscenePageLinter.new(cutscene_page_manifest_linter) } let(:cutscene_page_manifest_linter) { double(CutscenePageManifestLinter) } it "passes through to cutscene_page_manifest_linter" do expect(cutscene_page_manifest_linter).to receive(:lint) expect { cutscene_page_linter.lint }.to_not raise_error end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
playgroundbook-0.6.0 | spec/linter/cutscene_page_linter_spec.rb |
playgroundbook-0.4.0 | spec/linter/cutscene_page_linter_spec.rb |