mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-03-07 04:13:28 +08:00
12 lines
274 B
Elixir
12 lines
274 B
Elixir
|
defmodule LiveBook.Runtime.AttachedTest do
|
||
|
use ExUnit.Case, async: true
|
||
|
|
||
|
alias LiveBook.Runtime
|
||
|
|
||
|
describe "init/1" do
|
||
|
test "given an invalid node returns an error" do
|
||
|
assert {:error, :unreachable} = Runtime.Attached.init(:nonexistent@node)
|
||
|
end
|
||
|
end
|
||
|
end
|