Sha256: 4a72620b91407c690d4413d936ac351b07969130d7e1dd3621d1555e144eb7f5

Contents?: true

Size: 770 Bytes

Versions: 1

Compression:

Stored size: 770 Bytes

Contents

Feature: Web face
  Background:
    Given I successfully run `bundle exec rails new testapp --skip-bundle --skip-sprockets --skip-javascript`
    And I cd to "testapp"
    And I add "freezing_email" from this project as a dependency
    And I successfully run `bundle install`
    And I have allready freezed emails in 'freezed_emails' folder

  @disable-bundler
  Scenario: Integrate FreezingEmail web face to Rails
    When I write to "config/routes.rb" with:
      """
      Testapp::Application.routes.draw do
        mount FreezingEmail::Web, at: "/freezed_emails", as: :freezing_email
      end
      """
    When I successfully run `bundle exec rake routes`
    Then the output should contain "/freezed_emails"
    Then the output should contain "freezing_email"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
freezing_email-0.0.2 features/web_face.feature