Я просто хочу запустить метод в своем тесте и посмотреть, работает ли он.
Я попробовал следующую строку кода в моем классе тестирования:
UserPostcodesImport.add_postcodes_from_csv
Мой user_postcodes_import_test.rb:
require "test_helper"
require "user_postcodes_import"
class UserPostcodesImportTest < ActiveSupport::TestCase
it "works" do
UserPostcodesImport.add_postcodes_from_csv
end
end
Мой user_postcodes_import:
class UserPostcodesImport
class << self
def add_postcodes_from_csv
puts "it works"
end
end
end
Я ожидаю, что консоль напечатает "все работает", но выводит ошибку:
NoMethodError: undefined method `add_postcodes_from_csv'