Sha256: f7e49dfeb5465578109e3c3def129602c71f9f36fb4bed896613b36899a79935
Contents?: true
Size: 1.09 KB
Versions: 2
Compression:
Stored size: 1.09 KB
Contents
module RSpec::RailsApp::ArtifactFile module Matchers class HaveRailsArtifactFile include ::Rails3::Assist::Artifact::FileName attr_accessor :name, :artifact_type, :artifact_name attr_accessor :folder, :action, :view_ext include ArtifactFile::Matcher::Helper def initialize(name, artifact_type = nil) self.artifact_type = artifact_type extend "Rails3::Assist::Artifact::#{artifact_type.to_s.camelize}".constantize if name.kind_of? Hash set_view name return nil end self.artifact_name = name.to_s end def matches?(root_path, &block) self.artifact_name = get_artifact_name match = File.file? artifact_name if block && match yield File.read(artifact_name) end match end end def have_rails_artifact_file(relative, artifact_type = nil) HaveRailsArtifactFile.new(relative, artifact_type) end alias_method :contain_rails_artifact_file, :have_rails_artifact_file end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rails-app-spec-0.2.8 | lib/rails_app_spec/matchers/artifact/have_rails_artifact_file.rb |
rails-app-spec-0.2.7 | lib/rails_app_spec/matchers/artifact/have_rails_artifact_file.rb |