https://github.com/matmoore/testing-oracle-with-rspec-demo
Don't ask.
https://github.com/matmoore/testing-oracle-with-rspec-demo
Last synced: about 1 year ago
JSON representation
Don't ask.
- Host: GitHub
- URL: https://github.com/matmoore/testing-oracle-with-rspec-demo
- Owner: MatMoore
- Created: 2019-01-28T17:41:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-14T10:22:16.000Z (over 7 years ago)
- Last Synced: 2025-02-08T12:47:08.475Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Run Oracle in Docker
```
docker build -t testing-oracle-with-rspec-demo .
docker run -d -p 49161:1521 -e ORACLE_ALLOW_REMOTE=true testing-oracle-with-rspec-demo
```
### Install Oracle Instant Client
[Docs here](https://github.com/kubo/ruby-oci8/blob/master/docs/install-on-osx.md#install-oracle-instant-client-packages)
### Run tests
1. Get the code
```
git clone git@github.com:heidar/testing-oracle-with-rspec-demo.git
```
2. Set the OCI_DIR
```
export OCI_DIR=$(brew --prefix)/lib
```
3. Install gems
```
bundle
```
4. Run tests
```
bundle exec rspec
```
### TODO
[Trello Board](https://trello.com/b/aFOPOLJR)