Sha256: 199dd68f1a40b6157e4ca392c914d1b49b10a8ed85c6d0b5a5495684c6807064

Contents?: true

Size: 374 Bytes

Versions: 1

Compression:

Stored size: 374 Bytes

Contents

require 'spec_helper'

describe Lotion::Application do
  subject { Class.new do
    include Lotion::Application
  end.new }

  it { should respond_to( :application ) }

  let( :application ){ double 'application' }
  let( :options ){ double 'launch options' }

  it 'should return true, of course' do
    subject.application( application, options ).should == true
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lotion-0.0.1 spec/lotion/application_spec.rb