Sha256: dffd70a97f0376d0d8e40394ee802bbb88f2079edca1e481977a6c88dcfb7912

Contents?: true

Size: 352 Bytes

Versions: 4

Compression:

Stored size: 352 Bytes

Contents

require 'test_helper'

describe "Rails Admin Feature" do
  it "must access to dashboard" do
    visit rails_admin.dashboard_path
    current_path.must_equal rails_admin.dashboard_path
  end

  it "must access to localized dashboard" do
    visit rails_admin.dashboard_path(locale: :cs)
    current_path.must_equal '/foundationstone/cs/admin/'
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
foundationstone-0.0.4 test/integration/rails_admin_test.rb
foundationstone-0.0.3 test/integration/rails_admin_test.rb
foundationstone-0.0.2 test/integration/rails_admin_test.rb
foundationstone-0.0.1 test/integration/rails_admin_test.rb