Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ricardovaltierra/book-collection
https://github.com/ricardovaltierra/book-collection
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ricardovaltierra/book-collection
- Owner: ricardovaltierra
- Created: 2022-07-28T17:04:30.000Z (over 2 years ago)
- Default Branch: feature/implementing-models-via-TDD
- Last Pushed: 2022-07-28T19:19:37.000Z (over 2 years ago)
- Last Synced: 2023-03-03T02:01:49.575Z (over 1 year ago)
- Language: Ruby
- Size: 36.1 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Instrucciones
* Version de Ruby requerida
3.1.2
* Dependencias del sistema
Postgresql 12
* Instalar dependencias
```bash
bundle install
```* Crear la base de datos
```bash
bin/rails db:create
```* Correr las pruebas
```bash
bin/rails test:system test
```* Implementar las funcionalidades necesarias para hacer pasar las pruebas. Ejemplo de salida esperada:
```bash
Running 4 tests in a single process (parallelization threshold is 50)
Run options: --seed 32398# Running:
DEBUGGER: Attaching after process 99628 fork to child process 99652
Capybara starting Puma...
* Version 5.6.4 , codename: Birdie's Version
* Min threads: 0, max threads: 4
* Listening on http://127.0.0.1:45227
....Finished in 3.714372s, 1.0769 runs/s, 5.1153 assertions/s.
4 runs, 19 assertions, 0 failures, 0 errors, 0 skips
Running 2 tests in a single process (parallelization threshold is 50)
Run options: --seed 6948# Running:
..
Finished in 0.034576s, 57.8433 runs/s, 115.6866 assertions/s.
2 runs, 4 assertions, 0 failures, 0 errors, 0 skips
```