An open API service indexing awesome lists of open source software.

https://github.com/rhruiz/elixir-fake_cas

A stub Cas server in Elixir
https://github.com/rhruiz/elixir-fake_cas

Last synced: about 2 months ago
JSON representation

A stub Cas server in Elixir

Awesome Lists containing this project

README

        

# FakeCAS

Stubs a [CAS](https://github.com/apereo/cas) server with deterministic HTTP responses.

## Installation

The package can be installed as:

1. Add fake_cas to your list of dependencies in `mix.exs`:

```elixir
def deps do
[{:fake_cas, "~> 1.4"}]
end
```

2. Ensure fake_cas is started before your application if you are using Elixir < 1.5:

```elixir
def application do
[applications: [:fake_cas]]
end
```

## Usage

Please refer to the docs on the `FakeCas` module or on [hexdocs](https://hexdocs.pm/fake_cas/)

## Issues and Pull requests

Here on GitHub, you know the drill.