Skip to content

Commit

Permalink
fixme is added to encoding related test
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhijitVyas committed Aug 12, 2020
1 parent 7631948 commit dc95963
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/db/tripledb.plt
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,10 @@ test('tripledb_tell_special_characters_@*~!#?'):-

% it is observed that once these special characters are stored in db(with wrong format), they can not be retrieved normally in variables or any other way.
% Hence, in the code we throw a warning at triple_query_unify_o1
test('tripledb ask for triple with special character already stored in db(wrong/corrupt format)'):-
test('tripledb ask for triple with special character already stored in db(wrong/corrupt format)',
[ fixme('fix encoding for special characters e.g. umlaut') ]):-
tripledb_tell(test_datatype:'Lecturer3', test_datatype:'last_name', 'Müller'),
assert_false(tripledb_ask(test_datatype:'Lecturer3', test_datatype:'last_name', _)).
assert_true(tripledb_ask(test_datatype:'Lecturer3', test_datatype:'last_name', _)).

% test for non existent triples
test('tripledb_ask_for_non_existant_triples'):-
Expand Down

0 comments on commit dc95963

Please sign in to comment.