Sha256: edf4ec63662c2f1f538477dbc4ecc2c0357b655c8bc60e90c63eaa5263094f35

Contents?: true

Size: 1.08 KB

Versions: 1

Compression:

Stored size: 1.08 KB

Contents

require 'test_helper'

class NewTest < ViewCase

  setup :visit_new_product
  # teardown :teardown

  def test_shared_new_page_messages
    assert_button("#{I18n.t('action.add')} #{Adminpanel::Product.display_name}")
  end

  def test_submitting_with_invalid_information
    click_button('Agregar Producto')
    assert_content('Producto no pudo guardarse debido a 3 errores')
  end

  def test_submitting_with_valid_information
    fill_in 'product_name', :with => 'product name'
    fill_in 'product_price', :with => '855.5'
    page.execute_script(
      %Q(
        $('#product_description').data('wysihtml5').editor.setValue('que pepsi');
      )
    ) # to fill the wysiwyg editor
    click_button('Agregar Producto')
    assert_content(I18n.t('action.save_success'))
    saved_product = Adminpanel::Product.last
    assert_equal 'product name', saved_product.name
    assert_equal '855.5', saved_product.price
    assert_equal 'que pepsi', saved_product.description
  end

  protected
  def visit_new_product
    visit adminpanel.signin_path
    login
    visit adminpanel.new_product_path
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
adminpanel-2.1.1 test/features/shared/new_test.rb