I am new to DBFIT and need help in resolving the issue couldn't find a fixture
by looking at forums in this site I have added import fixture but that didn't help either.
I get an error as Could not find fixture: import Could not find fixture: ConnectUsingFile. Could not find fixture: dbfit.PostgresTest Could not find fixture: Query.
Code is as below
!contents -R2 -g -p -f -h
!|import fixture|
|dbfit.fixture|
!define redshift_conn_file {pica-dev.dbfit.connection}
!define sds_schema {sds}
!define ins_schema {ins}
!| dbfit.PostgresTest |
!|Connect using file|${redshift_conn_file}|
enter code here
!|Query|!-
select case when count(*) > 0 then false else true end as test_result from sor.ccr_cc_claim;
-!|
|TEST_RESULT|
|TRUE|
You are missing
!path lib/*.jarthat brings DbFit in. That have to be the top row in all test pages.E.g. from Getting Started: