Keine Beschreibung http://j1x-huginn.herokuapp.com

weather_agent_spec.rb 857B

123456789101112131415161718192021222324252627282930313233343536373839
  1. require 'rails_helper'
  2. describe Agents::WeatherAgent do
  3. let(:agent) do
  4. Agents::WeatherAgent.create(
  5. name: 'weather',
  6. options: {
  7. :location => 94103,
  8. :lat => 37.779329,
  9. :lng => -122.41915,
  10. :api_key => 'test'
  11. }
  12. ).tap do |agent|
  13. agent.user = users(:bob)
  14. agent.save!
  15. end
  16. end
  17. it "creates a valid agent" do
  18. expect(agent).to be_valid
  19. end
  20. it "is valid with put-your-key-here or your-key" do
  21. agent.options['api_key'] = 'put-your-key-here'
  22. expect(agent).to be_valid
  23. expect(agent.working?).to be_falsey
  24. agent.options['api_key'] = 'your-key'
  25. expect(agent).to be_valid
  26. expect(agent.working?).to be_falsey
  27. end
  28. describe "#service" do
  29. it "doesn't have a Service object attached" do
  30. expect(agent.service).to be_nil
  31. end
  32. end
  33. end