~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to unittests/time_test.cc

  • Committer: Stewart Smith
  • Date: 2011-01-14 05:09:04 UTC
  • mto: (2086.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2087.
  • Revision ID: stewart@flamingspork.com-20110114050904-a98kswwpqnpl413s
add a bit of a note on how variables docs should be expanded

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#include "config.h"
22
22
 
23
23
#include <gtest/gtest.h>
24
 
#include <drizzled/decimal.h>
 
24
#include <drizzled/type/decimal.h>
25
25
#include <drizzled/temporal.h>
26
26
#include <drizzled/temporal_format.h>
27
27
 
280
280
 
281
281
TEST_F(TimeTest, to_decimal)
282
282
{
283
 
  drizzled::my_decimal to;
 
283
  drizzled::type::Decimal to;
284
284
  TemporalGenerator::TimeGen::make_time(&sample_time, 8, 4, 9, 56);
285
285
 
286
286
  sample_time.to_decimal(&to);
378
378
                                          "8:04:09",
379
379
                                          "8:04:9",
380
380
                                          "8:4:9"));
381
 
                                          
 
 
b'\\ No newline at end of file'
 
381