Class: Embryo::TestSupport

Inherits:
Object
  • Object
show all
Defined in:
lib/embryo/test_support.rb

Instance Method Summary collapse

Constructor Details

#initialize(filesystem) ⇒ TestSupport

Returns a new instance of TestSupport.



8
9
10
# File 'lib/embryo/test_support.rb', line 8

def initialize(filesystem)
  @filesystem = filesystem
end

Instance Method Details

#installObject



12
13
14
15
16
17
# File 'lib/embryo/test_support.rb', line 12

def install
  Rspec.new(@filesystem).install
  FactoryGirl.new(@filesystem).install
  Capybara.new(@filesystem).install
  Poltergeist.new(@filesystem).install
end