Sha256: b152f4b9ee8a80b1b10c826a2cdaba035f6e11e8de5f7595992ca2233fe2723e

Contents?: true

Size: 442 Bytes

Versions: 2

Compression:

Stored size: 442 Bytes

Contents

require "test_helper"
require "mimoco"

class ControllersTest < ActionDispatch::IntegrationTest
  def test_some
    controllers = {
      OrdersController => {
        respond_to: %i[create destroy edit index new show update],
        class_methods: %i[class_method],
        call_class_methods: %i[class_method],
        public_methods: %i[create destroy edit index new show update]
      }
    }
    check_controllers controllers
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mimoco-0.3.0 test/controllers/controllers_test.rb
mimoco-0.2.0 test/controllers/controllers_test.rb