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
- Host: GitHub
- URL: https://github.com/rhruiz/elixir-fake_cas
- Owner: rhruiz
- License: mit
- Created: 2016-03-02T19:42:44.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-01-09T20:27:49.000Z (over 6 years ago)
- Last Synced: 2025-03-10T07:37:07.350Z (3 months ago)
- Language: Elixir
- Size: 19.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
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.