parent
2a25481663
commit
93bd9f0a00
@ -0,0 +1,18 @@ |
|||||||
|
defmodule Explorer.Chain.StakingPoolsDelegatorTest do |
||||||
|
use Explorer.DataCase |
||||||
|
|
||||||
|
alias Explorer.Chain.StakingPoolsDelegator |
||||||
|
|
||||||
|
describe "changeset/2" do |
||||||
|
test "with valid attributes" do |
||||||
|
params = params_for(:staking_pools_delegator) |
||||||
|
changeset = StakingPoolsDelegator.changeset(%StakingPoolsDelegator{}, params) |
||||||
|
assert changeset.valid? |
||||||
|
end |
||||||
|
|
||||||
|
test "with invalid attributes" do |
||||||
|
changeset = StakingPoolsDelegator.changeset(%StakingPoolsDelegator{}, %{pool_address_hash: 0}) |
||||||
|
refute changeset.valid? |
||||||
|
end |
||||||
|
end |
||||||
|
end |
@ -1,18 +0,0 @@ |
|||||||
defmodule Explorer.Chain.StakingPoolsDelegatorsTest do |
|
||||||
use Explorer.DataCase |
|
||||||
|
|
||||||
alias Explorer.Chain.StakingPoolsDelegators |
|
||||||
|
|
||||||
describe "changeset/2" do |
|
||||||
test "with valid attributes" do |
|
||||||
params = params_for(:staking_pools_delegators) |
|
||||||
changeset = StakingPoolsDelegators.changeset(%StakingPoolsDelegators{}, params) |
|
||||||
assert changeset.valid? |
|
||||||
end |
|
||||||
|
|
||||||
test "with invalid attributes" do |
|
||||||
changeset = StakingPoolsDelegators.changeset(%StakingPoolsDelegators{}, %{pool_address_hash: 0}) |
|
||||||
refute changeset.valid? |
|
||||||
end |
|
||||||
end |
|
||||||
end |
|
Loading…
Reference in new issue