This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mickael@mickael-laptop:~/projects/pabd/test$ ruby unit/user_test.rb | |
Loaded suite unit/user_test | |
Started | |
..................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................... | |
Finished in 99.327254 seconds. | |
629 tests, 629 assertions, 0 failures, 0 errors |
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"ID_JOB";"NOM_JOB";"DATE_DEBUT";"DATE_FIN" | |
"1";"W_TRAITEMENT_COMPLET";"2010-08-19 17:16:02";NULL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Destruction des tables si elles sont presentes */ | |
DROP TABLE IF EXISTS tfa_data; | |
DROP TABLE IF EXISTS tdi_temps; | |
DROP TABLE IF EXISTS tmp_data; | |
/* Creation des tables */ | |
CREATE TABLE tfa_data(ID INTEGER PRIMARY KEY AUTOINCREMENT, ADCO TEXT, OPTARIF TEXT, ISOUSC TEXT, HCHC TEXT, HCHP TEXT, PTEC TEXT, IINST TEXT, IMAX TEXT, PAPP TEXT, HHPHC TEXT, MOTDETAT TEXT, ID_TEMPS INTEGER); | |
CREATE TABLE tdi_temps(ID INTEGER PRIMARY KEY AUTOINCREMENT, ANNEE INTEGER, MOIS INTEGER, JOUR INTEGER, HEURE TEXT); | |
CREATE TABLE tmp_data(ADCO TEXT, OPTARIF TEXT, ISOUSC TEXT, HCHC TEXT, HCHP TEXT, PTEC TEXT, IINST TEXT, IMAX TEXT, PAPP TEXT, HHPHC TEXT, MOTDETAT TEXT); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd `dirname $0` | |
ROOT_PATH=`pwd` | |
java -Xms256M -Xmx1024M -cp classpath.jar: pabd_conso.w_traitement_consolidation_0_1.W_TRAITEMENT_CONSOLIDATION --context=Default --context_param PARAMS_CONTEXT_source_agence_id=$1 --context_param PARAMS_CONTEXT_source_feedback_id=$2 $* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Use database | |
USE pabd_olap; | |
-- Suppression de la procedure si elle existe | |
DROP PROCEDURE IF EXISTS sp_maj_referentiel_agences; | |
-- Changement du parametre "delimiter" pour creer la procedure | |
DELIMITER $$ | |
-- Creation de la procedure sp_maj_referentiel_gen |
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"1";"2000-01-01 10:00:00" | |
"2";"2000-02-01 10:00:00" | |
"3";"2000-03-01 10:00:00" | |
"4";"2000-04-01 10:00:00" | |
"5";"2000-05-01 10:00:00" | |
"6";"2000-06-01 10:00:00" | |
"7";"2000-07-01 10:00:00" | |
"8";"2000-08-01 10:00:00" | |
"9";"2000-09-01 10:00:00" | |
"10";"2000-10-01 10:00:00" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##### Faking data for "Sud" and "April 2000" | |
### Processing trouble_project | |
### Processing book | |
### Processing alert_collaborator | |
### Processing delivery_distribution | |
### Processing feeling_agency | |
# Errors Factory(feeling_agency) with :agency_id => 10 and feedback_id => 4 | |
Validation failed: Level has already been taken | |
### Processing cost_number | |
### Processing prospect |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>> Skill.down | |
=> [#<Skill id: 705, name: "ZEND STUDIO", created_at: "2010-07-22 09:00:38", updated_at: "2010-07-22 09:00:38">, #<Skill id: 704, name: "ZEND FRAMEWORK", created_at: "2010-07-22 09:00:38", updated_at: "2010-07-22 09:00:38">, #<Skill id: 703, name: "Zend", created_at: "2010-07-22 09:00:38", updated_at: "2010-07-22 09:00:38">, #<Skill id: 702, name: "Z/OS", created_at: "2010-07-22 09:00:38", updated_at: "2010-07-22 09:00:38">, #<Skill id: 701, name: "Xyleme", created_at: "2010-07-22 09:00:38", updated_at: "2010-07-22 09:00:38">, #<Skill id: 700, name: "Xtragrid", created_at: "2010-07-22 09:00:38", updated_at: "2010-07-22 09:00:38">, #<Skill id: 699, name: "XSLT", created_at: "2010-07-22 09:00:38", updated_at: "2010-07-22 09:00:38">, #<Skill id: 698, name: "XSL", created_at: "2010-07-22 09:00:38", updated_at: "2010-07-22 09:00:38">, #<Skill id: 697, name: "XMLSpy", created_at: "2010-07-22 09:00:38", updated_at: "2010-07-22 09:00:38">, #<Skill id: 696, name: "XML XPAth", created_at: "2010-07-22 09:0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ENV["RAILS_ENV"] = "test" | |
require File.expand_path(File.dirname(__FILE__) + "/../config/environment") | |
require 'test_help' | |
require 'factory_girl' | |
require 'shoulda' | |
require 'faker' | |
require "authlogic/test_case" | |
require 'i18n' | |
class ActiveSupport::TestCase |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65) Error: | |
test: (locale=FR) logged in on PUT to :update (valid data) should redirect to alert_collaborator index page. (Hr::AlertCollaboratorsControllerTest): | |
NoMethodError: undefined method `users' for #<Hr::AlertCollaboratorsControllerTest:0x7f4ce9161ab0> | |
/test_helper.rb:117:in `generate_setup' | |
functional/hr/alert_collaborators_controller_test.rb:7:in `__bind_1279813364_526452' | |
shoulda (2.10.3) lib/shoulda/context.rb:380:in `call' | |
shoulda (2.10.3) lib/shoulda/context.rb:380:in `run_current_setup_blocks' | |
shoulda (2.10.3) lib/shoulda/context.rb:379:in `each' | |
shoulda (2.10.3) lib/shoulda/context.rb:379:in `run_current_setup_blocks' | |
shoulda (2.10.3) lib/shoulda/context.rb:371:in `run_all_setup_blocks' |