Sha256: 2043799373cacee2eb4ae330b43488ef0fbad5ac5d4898b9298cd686f3f29120

Contents?: true

Size: 1.04 KB

Versions: 6

Compression:

Stored size: 1.04 KB

Contents

module MutantSpec
  class FileState
    DEFAULTS = IceNine.deep_freeze(
      file:     false,
      contents: nil,
      requires: []
    )

    include Adamantium, Anima.new(*DEFAULTS.keys)

    def self.new(attributes = DEFAULTS)
      super(DEFAULTS.merge(attributes))
    end

    DOES_NOT_EXIST = new

    alias_method :file?, :file
  end # FileState

  class FakePathname
    include Adamantium, Concord.new(:file_system, :pathname)

    def join(*arguments)
      self.class.new(
        file_system,
        pathname.join(*arguments)
      )
    end

    def read
      state.contents
    end

    def to_s
      pathname.to_s
    end

    def file?
      state.file?
    end

  private

    def state
      file_system.state(pathname.to_s)
    end
  end # FakePathname

  class FileSystem
    include Adamantium, Concord.new(:file_states)

    def state(filename)
      file_states.fetch(filename, FileState::DOES_NOT_EXIST)
    end

    def path(filename)
      FakePathname.new(self, Pathname.new(filename))
    end
  end # FileSystem
end # MutantSpec

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
mutant-0.8.16 spec/support/file_system.rb
mutant-0.8.15 spec/support/file_system.rb
mutant-0.8.14 spec/support/file_system.rb
mutant-0.8.13 spec/support/file_system.rb
mutant-0.8.12 spec/support/file_system.rb
mutant-0.8.11 spec/support/file_system.rb