mirror of
				https://github.com/livebook-dev/livebook.git
				synced 2025-11-04 18:41:08 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			449 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			449 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
defmodule LivebookWeb.ConnCase do
 | 
						|
  use ExUnit.CaseTemplate
 | 
						|
 | 
						|
  using do
 | 
						|
    quote do
 | 
						|
      # Import conveniences for testing with connections
 | 
						|
      import Plug.Conn
 | 
						|
      import Phoenix.ConnTest
 | 
						|
      import LivebookWeb.ConnCase
 | 
						|
 | 
						|
      alias LivebookWeb.Router.Helpers, as: Routes
 | 
						|
 | 
						|
      # The default endpoint for testing
 | 
						|
      @endpoint LivebookWeb.Endpoint
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  setup _tags do
 | 
						|
    {:ok, conn: Phoenix.ConnTest.build_conn()}
 | 
						|
  end
 | 
						|
end
 |