mirror of
https://github.com/oonyeje/Pearlception_Website_RoR.git
synced 2025-12-25 11:47:41 +00:00
18 lines
365 B
Ruby
18 lines
365 B
Ruby
require 'test_helper'
|
|
|
|
class OysterTest < ActiveSupport::TestCase
|
|
|
|
test "check_connection" do
|
|
Oyster.connection
|
|
assert true
|
|
end
|
|
|
|
test "get_first_oyster" do
|
|
first = Oyster.first
|
|
id = first.oyster_id == 1
|
|
run = first.run_id == 257
|
|
grade = first.grade == "Rej"
|
|
assert id && run && grade
|
|
end
|
|
end
|