mirror of
https://github.com/internetee/registry.git
synced 2025-06-08 13:44:47 +02:00
11 lines
172 B
Ruby
11 lines
172 B
Ruby
require 'test_helper'
|
|
|
|
class InvoiceTest < ActiveSupport::TestCase
|
|
def setup
|
|
@invoice = invoices(:valid)
|
|
end
|
|
|
|
def test_valid
|
|
assert @invoice.valid?
|
|
end
|
|
end
|