Sha256: 393a70a97b5cc0eb71c3cc9970d2df2a809eb1887d45c98d4a9a1025fab5a764

Contents?: true

Size: 479 Bytes

Versions: 13

Compression:

Stored size: 479 Bytes

Contents

require 'test_helper'

module ResqueWeb
  class WorkersControllerTest < ActionController::TestCase
    include ControllerTestHelpers

    setup do
      @routes = Engine.routes
    end

    describe "GET /index" do
      it "renders the index page" do
        visit(:index)
        assert_template :index
      end
    end

    describe "GET /show" do
      it "renders the show page" do
        visit(:show, id: "all")
        assert_template :show
      end
    end

  end
end

Version data entries

13 entries across 13 versions & 5 rubygems

Version Path
resque-web-0.0.10 test/functional/workers_controller_test.rb
misha-resque-web-0.1.1 test/functional/workers_controller_test.rb
misha-resque-web-0.1.0 test/functional/workers_controller_test.rb
misha-resque-web-0.0.9 test/functional/workers_controller_test.rb
resque-web-0.0.9 test/functional/workers_controller_test.rb
resque-web-0.0.8 test/functional/workers_controller_test.rb
resque-web-edge-1.0.0 test/functional/workers_controller_test.rb
resque-web-0.0.7 test/functional/workers_controller_test.rb
resque-web-clone-0.0.7 test/functional/workers_controller_test.rb
resque-web-clone-0.0.6 test/functional/workers_controller_test.rb
resque-web-0.0.6 test/functional/workers_controller_test.rb
glebtv_resque_web-0.1.0 test/functional/workers_controller_test.rb
resque-web-0.0.5 test/functional/workers_controller_test.rb