module Lita::RSpec::Matchers::DeprecatedMethods

Public Instance Methods

does_not_route(message) click to toggle source

Starts a chat routing test chain, asserting that a message should not trigger a route. @param message [String] The message that should not trigger the route. @return [Deprecated] A {Deprecated} that should have to

called on it to complete the test.

@deprecated Will be removed in Lita 5.0. Use +is_expected.not_to route+ instead.

# File lib/lita/rspec/matchers/deprecated.rb, line 26
def does_not_route(message)
  STDERR.puts I18n.t(
    "lita.rspec.matcher_deprecated",
    old_method: "does_not_route",
    new_method: "is_expected.not_to route",
  )
  Deprecated.new(self, :route, false, message)
end
Also aliased as: doesnt_route
does_not_route_command(message) click to toggle source

Starts a chat routing test chain, asserting that a “command” message should not trigger a route. @param message [String] The message that should not trigger the route. @return [Deprecated] A {Deprecated} that should have to

called on it to complete the test.

@deprecated Will be removed in Lita 5.0. Use +is_expected.not_to route_command+ instead.

# File lib/lita/rspec/matchers/deprecated.rb, line 57
def does_not_route_command(message)
  STDERR.puts I18n.t(
    "lita.rspec.matcher_deprecated",
    old_method: "does_not_route_command",
    new_method: "is_expected.not_to route_command",
  )
  Deprecated.new(self, :route_command, false, message)
end
Also aliased as: doesnt_route_command
does_not_route_event(event_name) click to toggle source

Starts an event subscription test chain, asserting that an event should not trigger the target method. @param event_name [String, Symbol] The name of the event that should

not be triggered.

@return [Deprecated] A {Deprecated} that

should have +to+ called on it to complete the test.

@deprecated Will be removed in Lita 5.0. Use +is_expected.not_to route_event+ instead.

# File lib/lita/rspec/matchers/deprecated.rb, line 127
def does_not_route_event(event_name)
  STDERR.puts I18n.t(
    "lita.rspec.matcher_deprecated",
    old_method: "does_not_route_event",
    new_method: "is_expected.not_to route_event",
  )
  Deprecated.new(self, :route_event, false, event_name)
end
Also aliased as: doesnt_route_event
does_not_route_http(http_method, path) click to toggle source

Starts an HTTP routing test chain, asserting that a request to the given path with the given HTTP request method will not trigger a route. @param http_method [Symbol] The HTTP request method that should not

trigger the route.

@param path [String] The path URL component that should not trigger the

route.

@return [Deprecated] A {Deprecated} that should

have +to+ called on it to complete the test.

@deprecated Will be removed in Lita 5.0. Use +is_expected.not_to route_http+ instead.

# File lib/lita/rspec/matchers/deprecated.rb, line 94
def does_not_route_http(http_method, path)
  STDERR.puts I18n.t(
    "lita.rspec.matcher_deprecated",
    old_method: "does_not_route_http",
    new_method: "is_expected.not_to route_http",
  )
  Deprecated.new(self, :route_http, false, http_method, path)
end
Also aliased as: doesnt_route_http
doesnt_route(message)
Alias for: does_not_route
doesnt_route_command(message)
doesnt_route_event(event_name)
doesnt_route_http(http_method, path)
Alias for: does_not_route_http
routes(message) click to toggle source

Starts a chat routing test chain, asserting that a message should trigger a route. @param message [String] The message that should trigger the route. @return [Deprecated] A {Deprecated} that should have to

called on it to complete the test.

@deprecated Will be removed in Lita 5.0. Use +is_expected.to route+ instead.

# File lib/lita/rspec/matchers/deprecated.rb, line 11
def routes(message)
  STDERR.puts I18n.t(
    "lita.rspec.matcher_deprecated",
    old_method: "routes",
    new_method: "is_expected.to route",
  )
  Deprecated.new(self, :route, true, message)
end
routes_command(message) click to toggle source

Starts a chat routing test chain, asserting that a “command” message should trigger a route. @param message [String] The message that should trigger the route. @return [Deprecated] A {Deprecated} that should have to

called on it to complete the test.

@deprecated Will be removed in Lita 5.0. Use +is_expected.to route_command+ instead.

# File lib/lita/rspec/matchers/deprecated.rb, line 42
def routes_command(message)
  STDERR.puts I18n.t(
    "lita.rspec.matcher_deprecated",
    old_method: "routes_command",
    new_method: "is_expected.to route_command",
  )
  Deprecated.new(self, :route_command, true, message)
end
routes_event(event_name) click to toggle source

Starts an event subscription test chain, asserting that an event should trigger the target method. @param event_name [String, Symbol] The name of the event that should

be triggered.

@return [Deprecated] A {Deprecated} that

should have +to+ called on it to complete the test.

@deprecated Will be removed in Lita 5.0. Use +is_expected.to route_event+ instead.

# File lib/lita/rspec/matchers/deprecated.rb, line 111
def routes_event(event_name)
  STDERR.puts I18n.t(
    "lita.rspec.matcher_deprecated",
    old_method: "routes_event",
    new_method: "is_expected.to route_event",
  )
  Deprecated.new(self, :route_event, true, event_name)
end
routes_http(http_method, path) click to toggle source

Starts an HTTP routing test chain, asserting that a request to the given path with the given HTTP request method will trigger a route. @param http_method [Symbol] The HTTP request method that should trigger

the route.

@param path [String] The path URL component that should trigger the

route.

@return [Deprecated] A {Deprecated} that should

have +to+ called on it to complete the test.

@deprecated Will be removed in Lita 5.0. Use +is_expected.to route_http+ instead.

# File lib/lita/rspec/matchers/deprecated.rb, line 76
def routes_http(http_method, path)
  STDERR.puts I18n.t(
    "lita.rspec.matcher_deprecated",
    old_method: "routes_http",
    new_method: "is_expected.to route_http",
  )
  Deprecated.new(self, :route_http, true, http_method, path)
end