cnab240 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. data/README.md +61 -8
  2. data/docs/vendor/itau/sisdeb_cnab_240.pdf +0 -0
  3. data/lib/cnab240/arquivo/arquivo.rb +14 -57
  4. data/lib/cnab240/arquivo/builder.rb +118 -0
  5. data/lib/cnab240/arquivo/estrutura.rb +68 -45
  6. data/lib/cnab240/arquivo/lote.rb +13 -5
  7. data/lib/cnab240/arquivo/v40/header.rb +46 -0
  8. data/lib/cnab240/arquivo/v40/trailer.rb +17 -0
  9. data/lib/cnab240/arquivo/{header.rb → v86/header.rb} +2 -2
  10. data/lib/cnab240/arquivo/{trailer.rb → v86/trailer.rb} +1 -1
  11. data/lib/cnab240/helper/remessa.rb +29 -0
  12. data/lib/cnab240/pagamentos/v40/header.rb +55 -0
  13. data/lib/cnab240/pagamentos/v40/trailer.rb +18 -0
  14. data/lib/cnab240/pagamentos/{header.rb → v86/header.rb} +1 -2
  15. data/lib/cnab240/pagamentos/{titulos → v86/titulos}/header.rb +1 -1
  16. data/lib/cnab240/pagamentos/{titulos → v86/titulos}/trailer.rb +1 -1
  17. data/lib/cnab240/pagamentos/{trailer.rb → v86/trailer.rb} +1 -1
  18. data/lib/cnab240/pagamentos/{tributos → v86/tributos}/header.rb +1 -1
  19. data/lib/cnab240/pagamentos/{tributos → v86/tributos}/trailer.rb +1 -1
  20. data/lib/cnab240/segmentos/{segmento_a.rb → v40/segmento_a.rb} +3 -1
  21. data/lib/cnab240/segmentos/v86/segmento_a.rb +47 -0
  22. data/lib/cnab240/segmentos/{segmento_b.rb → v86/segmento_b.rb} +1 -1
  23. data/lib/cnab240/segmentos/{segmento_c.rb → v86/segmento_c.rb} +1 -1
  24. data/lib/cnab240/segmentos/{segmento_j.rb → v86/segmento_j.rb} +1 -1
  25. data/lib/cnab240/segmentos/{segmento_j52.rb → v86/segmento_j52.rb} +1 -1
  26. data/lib/cnab240/segmentos/{segmento_n.rb → v86/segmento_n.rb} +1 -1
  27. data/lib/cnab240/segmentos/{segmento_n1.rb → v86/segmento_n1.rb} +1 -1
  28. data/lib/cnab240/segmentos/{segmento_n2.rb → v86/segmento_n2.rb} +1 -1
  29. data/lib/cnab240/segmentos/{segmento_n3.rb → v86/segmento_n3.rb} +1 -1
  30. data/lib/cnab240/segmentos/{segmento_n4.rb → v86/segmento_n4.rb} +1 -1
  31. data/lib/cnab240/segmentos/{segmento_n5.rb → v86/segmento_n5.rb} +1 -1
  32. data/lib/cnab240/segmentos/{segmento_n6.rb → v86/segmento_n6.rb} +1 -1
  33. data/lib/cnab240/segmentos/{segmento_n7.rb → v86/segmento_n7.rb} +1 -1
  34. data/lib/cnab240/segmentos/{segmento_n8.rb → v86/segmento_n8.rb} +1 -1
  35. data/lib/cnab240/segmentos/{segmento_o.rb → v86/segmento_o.rb} +1 -1
  36. data/lib/cnab240/segmentos/{segmento_w.rb → v86/segmento_w.rb} +1 -1
  37. data/lib/cnab240/segmentos/{segmento_w1.rb → v86/segmento_w1.rb} +1 -1
  38. data/lib/cnab240/segmentos/{segmento_z.rb → v86/segmento_z.rb} +1 -1
  39. data/lib/cnab240/version.rb +1 -1
  40. data/lib/cnab240.rb +39 -26
  41. data/spec/arquivo/arquivo_spec.rb +13 -5
  42. data/spec/arquivo/v40/header_spec.rb +68 -0
  43. data/spec/arquivo/v40/trailer_spec.rb +25 -0
  44. data/spec/arquivo/{header_spec.rb → v86/header_spec.rb} +6 -6
  45. data/spec/arquivo/{trailer_spec.rb → v86/trailer_spec.rb} +3 -3
  46. data/spec/cnab240_spec.rb +4 -4
  47. data/spec/pagamentos/v40/header_spec.rb +59 -0
  48. data/spec/pagamentos/v40/lote_spec.rb +24 -0
  49. data/spec/pagamentos/v40/trailer_spec.rb +28 -0
  50. data/spec/pagamentos/{header_spec.rb → v86/header_spec.rb} +3 -3
  51. data/spec/pagamentos/{lote_spec.rb → v86/lote_spec.rb} +4 -4
  52. data/spec/pagamentos/{titulos → v86/titulos}/header_spec.rb +3 -3
  53. data/spec/pagamentos/{titulos → v86/titulos}/lote_spec.rb +4 -4
  54. data/spec/pagamentos/{titulos → v86/titulos}/trailer_spec.rb +3 -3
  55. data/spec/pagamentos/{trailer_spec.rb → v86/trailer_spec.rb} +3 -3
  56. data/spec/pagamentos/{tributos → v86/tributos}/header_spec.rb +3 -3
  57. data/spec/pagamentos/{tributos → v86/tributos}/lote_spec.rb +4 -4
  58. data/spec/pagamentos/{tributos → v86/tributos}/trailer_spec.rb +3 -3
  59. data/spec/segmentos/{segmento_a_spec.rb → v40/segmento_a_spec.rb} +2 -2
  60. data/spec/segmentos/v86/segmento_a_spec.rb +65 -0
  61. data/spec/segmentos/{segmento_b_spec.rb → v86/segmento_b_spec.rb} +2 -2
  62. data/spec/segmentos/{segmento_c_spec.rb → v86/segmento_c_spec.rb} +2 -2
  63. data/spec/segmentos/{segmento_j52_spec.rb → v86/segmento_j52_spec.rb} +2 -2
  64. data/spec/segmentos/{segmento_j_spec.rb → v86/segmento_j_spec.rb} +2 -2
  65. data/spec/segmentos/{segmento_n1_spec.rb → v86/segmento_n1_spec.rb} +2 -2
  66. data/spec/segmentos/{segmento_n2_spec.rb → v86/segmento_n2_spec.rb} +2 -2
  67. data/spec/segmentos/{segmento_n3_spec.rb → v86/segmento_n3_spec.rb} +2 -2
  68. data/spec/segmentos/{segmento_n4_spec.rb → v86/segmento_n4_spec.rb} +2 -2
  69. data/spec/segmentos/{segmento_n5_spec.rb → v86/segmento_n5_spec.rb} +2 -2
  70. data/spec/segmentos/{segmento_n6_spec.rb → v86/segmento_n6_spec.rb} +2 -2
  71. data/spec/segmentos/{segmento_n7_spec.rb → v86/segmento_n7_spec.rb} +2 -2
  72. data/spec/segmentos/{segmento_n8_spec.rb → v86/segmento_n8_spec.rb} +2 -2
  73. data/spec/segmentos/{segmento_n_spec.rb → v86/segmento_n_spec.rb} +3 -3
  74. data/spec/segmentos/{segmento_o_spec.rb → v86/segmento_o_spec.rb} +2 -2
  75. data/spec/segmentos/{segmento_spec.rb → v86/segmento_spec.rb} +1 -1
  76. data/spec/segmentos/{segmento_w_spec.rb → v86/segmento_w_spec.rb} +2 -2
  77. data/spec/segmentos/{segmento_z_spec.rb → v86/segmento_z_spec.rb} +2 -2
  78. metadata +167 -137
@@ -1,9 +1,9 @@
1
1
  require 'spec_helper'
2
2
 
3
- describe Cnab240::Pagamentos::Header do
3
+ describe Cnab240::V86::Pagamentos::Header do
4
4
 
5
5
  it "deve conter campos header" do
6
- header = Cnab240::Pagamentos::Header.new
6
+ header = Cnab240::V86::Pagamentos::Header.new
7
7
 
8
8
  header.should respond_to(:controle_banco)
9
9
  header.should respond_to(:controle_lote)
@@ -46,7 +46,7 @@ describe Cnab240::Pagamentos::Header do
46
46
 
47
47
 
48
48
  it "header deve ter 240 caracteres" do
49
- header = Cnab240::Pagamentos::Header.new
49
+ header = Cnab240::V86::Pagamentos::Header.new
50
50
  header.linha.length.should be(240)
51
51
  end
52
52
 
@@ -4,18 +4,18 @@ describe Cnab240::Lote do
4
4
 
5
5
  it "deve conter trailer e header" do
6
6
  lote = Cnab240::Lote.new(:operacao => :pagamento, :tipo => :remessa)
7
- lote.header.should be_an_instance_of(Cnab240::Pagamentos::Header)
8
- lote.trailer.should be_an_instance_of(Cnab240::Pagamentos::Trailer)
7
+ lote.header.should be_an_instance_of(Cnab240::V86::Pagamentos::Header)
8
+ lote.trailer.should be_an_instance_of(Cnab240::V86::Pagamentos::Trailer)
9
9
  end
10
10
 
11
11
  it "deve conter segmento a" do
12
12
  lote = Cnab240::Lote.new(:operacao => :pagamento, :tipo => :remessa)
13
- lote.segmento_a.should be_an_instance_of(Cnab240::SegmentoA)
13
+ lote.segmento_a.should be_an_instance_of(Cnab240::V86::SegmentoA)
14
14
  end
15
15
 
16
16
  it "deve conter segmento b" do
17
17
  lote = Cnab240::Lote.new(:operacao => :pagamento, :tipo => :remessa)
18
- lote.segmento_b.should be_an_instance_of(Cnab240::SegmentoB)
18
+ lote.segmento_b.should be_an_instance_of(Cnab240::V86::SegmentoB)
19
19
  end
20
20
 
21
21
  it "pode conter segmento c" do
@@ -1,9 +1,9 @@
1
1
  require 'spec_helper'
2
2
 
3
- describe Cnab240::PagamentosTitulos::Header do
3
+ describe Cnab240::V86::PagamentosTitulos::Header do
4
4
 
5
5
  it "deve conter campos header" do
6
- header = Cnab240::PagamentosTitulos::Header.new
6
+ header = Cnab240::V86::PagamentosTitulos::Header.new
7
7
 
8
8
  header.should respond_to(:controle_banco)
9
9
  header.should respond_to(:controle_lote)
@@ -44,7 +44,7 @@ describe Cnab240::PagamentosTitulos::Header do
44
44
 
45
45
 
46
46
  it "header deve ter 240 caracteres" do
47
- header = Cnab240::PagamentosTitulos::Header.new
47
+ header = Cnab240::V86::PagamentosTitulos::Header.new
48
48
  header.linha.length.should be(240)
49
49
  end
50
50
 
@@ -4,18 +4,18 @@ describe Cnab240::Lote do
4
4
 
5
5
  it "deve conter trailer e header" do
6
6
  lote = Cnab240::Lote.new(:operacao => :pagamento, :tipo => :remessa)
7
- lote.header.should be_an_instance_of(Cnab240::Pagamentos::Header)
8
- lote.trailer.should be_an_instance_of(Cnab240::Pagamentos::Trailer)
7
+ lote.header.should be_an_instance_of(Cnab240::V86::Pagamentos::Header)
8
+ lote.trailer.should be_an_instance_of(Cnab240::V86::Pagamentos::Trailer)
9
9
  end
10
10
 
11
11
  it "deve conter segmento a" do
12
12
  lote = Cnab240::Lote.new(:operacao => :pagamento, :tipo => :remessa)
13
- lote.segmento_a.should be_an_instance_of(Cnab240::SegmentoA)
13
+ lote.segmento_a.should be_an_instance_of(Cnab240::V86::SegmentoA)
14
14
  end
15
15
 
16
16
  it "deve conter segmento b" do
17
17
  lote = Cnab240::Lote.new(:operacao => :pagamento, :tipo => :remessa)
18
- lote.segmento_b.should be_an_instance_of(Cnab240::SegmentoB)
18
+ lote.segmento_b.should be_an_instance_of(Cnab240::V86::SegmentoB)
19
19
  end
20
20
 
21
21
  it "pode conter segmento c" do
@@ -1,9 +1,9 @@
1
1
  require 'spec_helper'
2
2
 
3
- describe Cnab240::PagamentosTitulos::Trailer do
3
+ describe Cnab240::V86::PagamentosTitulos::Trailer do
4
4
 
5
5
  it "deve conter campos trailer" do
6
- trailer = Cnab240::PagamentosTitulos::Trailer.new
6
+ trailer = Cnab240::V86::PagamentosTitulos::Trailer.new
7
7
 
8
8
  trailer.should respond_to(:controle_banco)
9
9
  trailer.should respond_to(:controle_lote)
@@ -23,7 +23,7 @@ describe Cnab240::PagamentosTitulos::Trailer do
23
23
  end
24
24
 
25
25
  it "trailer deve ter 240 caracteres" do
26
- trailer = Cnab240::PagamentosTitulos::Trailer.new
26
+ trailer = Cnab240::V86::PagamentosTitulos::Trailer.new
27
27
  trailer.linha.length.should be(240)
28
28
  end
29
29
 
@@ -1,9 +1,9 @@
1
1
  require 'spec_helper'
2
2
 
3
- describe Cnab240::Pagamentos::Trailer do
3
+ describe Cnab240::V86::Pagamentos::Trailer do
4
4
 
5
5
  it "deve conter campos trailer" do
6
- trailer = Cnab240::Pagamentos::Trailer.new
6
+ trailer = Cnab240::V86::Pagamentos::Trailer.new
7
7
 
8
8
  trailer.should respond_to(:controle_banco)
9
9
  trailer.should respond_to(:controle_lote)
@@ -23,7 +23,7 @@ describe Cnab240::Pagamentos::Trailer do
23
23
  end
24
24
 
25
25
  it "trailer deve ter 240 caracteres" do
26
- trailer = Cnab240::Pagamentos::Trailer.new
26
+ trailer = Cnab240::V86::Pagamentos::Trailer.new
27
27
  trailer.linha.length.should be(240)
28
28
  end
29
29
 
@@ -1,9 +1,9 @@
1
1
  require 'spec_helper'
2
2
 
3
- describe Cnab240::PagamentosTributos::Header do
3
+ describe Cnab240::V86::PagamentosTributos::Header do
4
4
 
5
5
  it "deve conter campos header" do
6
- header = Cnab240::PagamentosTributos::Header.new
6
+ header = Cnab240::V86::PagamentosTributos::Header.new
7
7
 
8
8
  header.should respond_to(:controle_banco)
9
9
  header.should respond_to(:controle_lote)
@@ -46,7 +46,7 @@ describe Cnab240::PagamentosTributos::Header do
46
46
 
47
47
 
48
48
  it "header deve ter 240 caracteres" do
49
- header = Cnab240::PagamentosTributos::Header.new
49
+ header = Cnab240::V86::PagamentosTributos::Header.new
50
50
  header.linha.length.should be(240)
51
51
  end
52
52
 
@@ -4,18 +4,18 @@ describe Cnab240::Lote do
4
4
 
5
5
  it "deve conter trailer e header" do
6
6
  lote = Cnab240::Lote.new(:operacao => :pagamento_titulo_tributos, :tipo => :remessa)
7
- lote.header.should be_an_instance_of(Cnab240::PagamentosTributos::Header)
8
- lote.trailer.should be_an_instance_of(Cnab240::PagamentosTributos::Trailer)
7
+ lote.header.should be_an_instance_of(Cnab240::V86::PagamentosTributos::Header)
8
+ lote.trailer.should be_an_instance_of(Cnab240::V86::PagamentosTributos::Trailer)
9
9
  end
10
10
 
11
11
  it "deve conter segmento o" do
12
12
  lote = Cnab240::Lote.new(:operacao => :pagamento_titulo_tributos, :tipo => :remessa)
13
- lote.segmento_o.should be_an_instance_of(Cnab240::SegmentoO)
13
+ lote.segmento_o.should be_an_instance_of(Cnab240::V86::SegmentoO)
14
14
  end
15
15
 
16
16
  it "deve conter segmento n" do
17
17
  lote = Cnab240::Lote.new(:operacao => :pagamento_titulo_tributos, :tipo => :remessa)
18
- lote.segmento_n.should be_an_instance_of(Cnab240::SegmentoN)
18
+ lote.segmento_n.should be_an_instance_of(Cnab240::V86::SegmentoN)
19
19
  end
20
20
 
21
21
  it "pode conter segmento w" do
@@ -1,9 +1,9 @@
1
1
  require 'spec_helper'
2
2
 
3
- describe Cnab240::PagamentosTributos::Trailer do
3
+ describe Cnab240::V86::PagamentosTributos::Trailer do
4
4
 
5
5
  it "deve conter campos trailer" do
6
- trailer = Cnab240::PagamentosTributos::Trailer.new
6
+ trailer = Cnab240::V86::PagamentosTributos::Trailer.new
7
7
 
8
8
  trailer.should respond_to(:controle_banco)
9
9
  trailer.should respond_to(:controle_lote)
@@ -20,7 +20,7 @@ describe Cnab240::PagamentosTributos::Trailer do
20
20
  end
21
21
 
22
22
  it "trailer deve ter 240 caracteres" do
23
- trailer = Cnab240::PagamentosTributos::Trailer.new
23
+ trailer = Cnab240::V86::PagamentosTributos::Trailer.new
24
24
  trailer.linha.length.should be(240)
25
25
  end
26
26
 
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- include Cnab240
3
+ include Cnab240::V40
4
4
 
5
5
  describe SegmentoA do
6
6
 
@@ -54,7 +54,7 @@ describe SegmentoA do
54
54
  end
55
55
 
56
56
  it "deve manter coesao" do
57
- c = Cnab240::SegmentoA
57
+ c = Cnab240::V40::SegmentoA
58
58
  obj = c.new
59
59
  linha1 = obj.linha
60
60
  obj2 = c.read(linha1)
@@ -0,0 +1,65 @@
1
+ require 'spec_helper'
2
+
3
+ include Cnab240::V86
4
+
5
+ describe SegmentoA do
6
+
7
+ it "deve instanciar segmento" do
8
+ segmento = SegmentoA.new
9
+ segmento.should be_an_instance_of(SegmentoA)
10
+ end
11
+
12
+ it "deve conter campos" do
13
+ segmento = SegmentoA.new
14
+
15
+ segmento.should respond_to(:controle_banco)
16
+ segmento.should respond_to(:controle_lote)
17
+ segmento.should respond_to(:controle_registro)
18
+
19
+ segmento.should respond_to(:servico_numero_registro)
20
+ segmento.should respond_to(:servico_codigo_segmento)
21
+ segmento.should respond_to(:servico_tipo_movimento)
22
+ segmento.should respond_to(:servico_codigo_movimento)
23
+
24
+ segmento.should respond_to(:favorecido_camara)
25
+ segmento.should respond_to(:favorecido_banco)
26
+ segmento.should respond_to(:favorecido_agencia_codigo)
27
+ segmento.should respond_to(:favorecido_agencia_dv)
28
+ segmento.should respond_to(:favorecido_conta_numero)
29
+ segmento.should respond_to(:favorecido_conta_dv)
30
+ segmento.should respond_to(:favorecido_nome)
31
+
32
+ segmento.should respond_to(:credito_seu_numero)
33
+ segmento.should respond_to(:credito_data_pagamento)
34
+ segmento.should respond_to(:credito_moeda_tipo)
35
+ segmento.should respond_to(:credito_moeda_quantidade)
36
+ segmento.should respond_to(:credito_valor_pagamento)
37
+ segmento.should respond_to(:credito_nosso_numero)
38
+ segmento.should respond_to(:credito_data_real)
39
+ segmento.should respond_to(:credito_valor_real)
40
+
41
+ segmento.should respond_to(:informacao_2)
42
+
43
+ segmento.should respond_to(:codigo_finalidade_doc)
44
+ segmento.should respond_to(:codigo_finalidade_ted)
45
+ segmento.should respond_to(:codigo_finalidade_complementar)
46
+ segmento.should respond_to(:cnab_g004_1)
47
+ segmento.should respond_to(:aviso)
48
+ segmento.should respond_to(:ocorrencias)
49
+ end
50
+
51
+ it "deve ter 240 caracteres" do
52
+ segmento = SegmentoA.new
53
+ segmento.linha.length.should be(240)
54
+ end
55
+
56
+ it "deve manter coesao" do
57
+ c = Cnab240::V86::SegmentoA
58
+ obj = c.new
59
+ linha1 = obj.linha
60
+ obj2 = c.read(linha1)
61
+ linha2 = obj2.linha
62
+ linha1.should eq linha2
63
+ end
64
+
65
+ end
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- include Cnab240
3
+ include Cnab240::V86
4
4
 
5
5
  describe SegmentoB do
6
6
 
@@ -56,7 +56,7 @@ describe SegmentoB do
56
56
  end
57
57
 
58
58
  it "deve manter coesao" do
59
- c = Cnab240::SegmentoB
59
+ c = Cnab240::V86::SegmentoB
60
60
  obj = c.new
61
61
  linha1 = obj.linha
62
62
  obj2 = c.read(linha1)
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- include Cnab240
3
+ include Cnab240::V86
4
4
 
5
5
  describe SegmentoC do
6
6
 
@@ -40,7 +40,7 @@ describe SegmentoC do
40
40
  end
41
41
 
42
42
  it "deve manter coesao" do
43
- c = Cnab240::SegmentoC
43
+ c = SegmentoC
44
44
  obj = c.new
45
45
  linha1 = obj.linha
46
46
  obj2 = c.read(linha1)
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- include Cnab240
3
+ include Cnab240::V86
4
4
 
5
5
  describe SegmentoJ52 do
6
6
 
@@ -44,7 +44,7 @@ describe SegmentoJ52 do
44
44
  end
45
45
 
46
46
  it "deve manter coesao" do
47
- c = Cnab240::SegmentoJ52
47
+ c = SegmentoJ52
48
48
  obj = c.new
49
49
  linha1 = obj.linha
50
50
  obj2 = c.read(linha1)
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- include Cnab240
3
+ include Cnab240::V86
4
4
 
5
5
  describe SegmentoJ do
6
6
 
@@ -44,7 +44,7 @@ describe SegmentoJ do
44
44
  end
45
45
 
46
46
  it "deve manter coesao" do
47
- c = Cnab240::SegmentoJ
47
+ c = SegmentoJ
48
48
  obj = c.new
49
49
  linha1 = obj.linha
50
50
  obj2 = c.read(linha1)
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- include Cnab240
3
+ include Cnab240::V86
4
4
 
5
5
  describe SegmentoN1 do
6
6
 
@@ -32,7 +32,7 @@ describe SegmentoN1 do
32
32
  end
33
33
 
34
34
  it "deve manter coesao" do
35
- c = Cnab240::SegmentoN1
35
+ c = SegmentoN1
36
36
  obj = c.new
37
37
  linha1 = obj.linha
38
38
  obj2 = c.read(linha1)
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- include Cnab240
3
+ include Cnab240::V86
4
4
 
5
5
  describe SegmentoN2 do
6
6
 
@@ -35,7 +35,7 @@ describe SegmentoN2 do
35
35
  end
36
36
 
37
37
  it "deve manter coesao" do
38
- c = Cnab240::SegmentoN2
38
+ c = SegmentoN2
39
39
  obj = c.new
40
40
  linha1 = obj.linha
41
41
  obj2 = c.read(linha1)
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- include Cnab240
3
+ include Cnab240::V86
4
4
 
5
5
  describe SegmentoN3 do
6
6
 
@@ -34,7 +34,7 @@ describe SegmentoN3 do
34
34
  end
35
35
 
36
36
  it "deve manter coesao" do
37
- c = Cnab240::SegmentoN3
37
+ c = SegmentoN3
38
38
  obj = c.new
39
39
  linha1 = obj.linha
40
40
  obj2 = c.read(linha1)
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- include Cnab240
3
+ include Cnab240::V86
4
4
 
5
5
  describe SegmentoN4 do
6
6
 
@@ -36,7 +36,7 @@ describe SegmentoN4 do
36
36
  end
37
37
 
38
38
  it "deve manter coesao" do
39
- c = Cnab240::SegmentoN4
39
+ c = SegmentoN4
40
40
  obj = c.new
41
41
  linha1 = obj.linha
42
42
  obj2 = c.read(linha1)
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- include Cnab240
3
+ include Cnab240::V86
4
4
 
5
5
  describe SegmentoN5 do
6
6
 
@@ -34,7 +34,7 @@ describe SegmentoN5 do
34
34
  end
35
35
 
36
36
  it "deve manter coesao" do
37
- c = Cnab240::SegmentoN5
37
+ c = SegmentoN5
38
38
  obj = c.new
39
39
  linha1 = obj.linha
40
40
  obj2 = c.read(linha1)
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- include Cnab240
3
+ include Cnab240::V86
4
4
 
5
5
  describe SegmentoN6 do
6
6
 
@@ -34,7 +34,7 @@ describe SegmentoN6 do
34
34
  end
35
35
 
36
36
  it "deve manter coesao" do
37
- c = Cnab240::SegmentoN6
37
+ c = SegmentoN6
38
38
  obj = c.new
39
39
  linha1 = obj.linha
40
40
  obj2 = c.read(linha1)
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- include Cnab240
3
+ include Cnab240::V86
4
4
 
5
5
  describe SegmentoN7 do
6
6
 
@@ -35,7 +35,7 @@ describe SegmentoN7 do
35
35
  end
36
36
 
37
37
  it "deve manter coesao" do
38
- c = Cnab240::SegmentoN7
38
+ c = SegmentoN7
39
39
  obj = c.new
40
40
  linha1 = obj.linha
41
41
  obj2 = c.read(linha1)
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- include Cnab240
3
+ include Cnab240::V86
4
4
 
5
5
  describe SegmentoN8 do
6
6
 
@@ -34,7 +34,7 @@ describe SegmentoN8 do
34
34
  end
35
35
 
36
36
  it "deve manter coesao" do
37
- c = Cnab240::SegmentoN8
37
+ c = SegmentoN8
38
38
  obj = c.new
39
39
  linha1 = obj.linha
40
40
  obj2 = c.read(linha1)
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- include Cnab240
3
+ include Cnab240::V86
4
4
 
5
5
  describe SegmentoN do
6
6
 
@@ -40,7 +40,7 @@ describe SegmentoN do
40
40
  lote = Cnab240::Lote.new(:operacao => :pagamento_titulo_tributos, :tipo => :remessa) do |l|
41
41
  l.header.servico_forma = '25'
42
42
  end
43
- lote.segmento_n.should be_an_instance_of(Cnab240::SegmentoN)
43
+ lote.segmento_n.should be_an_instance_of(SegmentoN)
44
44
 
45
45
  segmento = lote.segmento_n.n_complemento
46
46
 
@@ -61,7 +61,7 @@ describe SegmentoN do
61
61
  end
62
62
 
63
63
  it "deve manter coesao" do
64
- c = Cnab240::SegmentoN
64
+ c = SegmentoN
65
65
  obj = c.new
66
66
  linha1 = obj.linha
67
67
  obj2 = c.read(linha1)
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- include Cnab240
3
+ include Cnab240::V86
4
4
 
5
5
  describe SegmentoO do
6
6
 
@@ -39,7 +39,7 @@ describe SegmentoO do
39
39
  end
40
40
 
41
41
  it "deve manter coesao" do
42
- c = Cnab240::SegmentoO
42
+ c = SegmentoO
43
43
  obj = c.new
44
44
  linha1 = obj.linha
45
45
  obj2 = c.read(linha1)
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- include Cnab240
3
+ include Cnab240::V86
4
4
 
5
5
  describe "Segmentos" do
6
6
 
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- include Cnab240
3
+ include Cnab240::V86
4
4
 
5
5
  describe SegmentoW do
6
6
 
@@ -40,7 +40,7 @@ describe SegmentoW do
40
40
  end
41
41
 
42
42
  it "deve manter coesao" do
43
- c = Cnab240::SegmentoW
43
+ c = SegmentoW
44
44
  obj = c.new
45
45
  linha1 = obj.linha
46
46
  obj2 = c.read(linha1)
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- include Cnab240
3
+ include Cnab240::V86
4
4
 
5
5
  describe SegmentoZ do
6
6
 
@@ -31,7 +31,7 @@ describe SegmentoZ do
31
31
  end
32
32
 
33
33
  it "deve manter coesao" do
34
- c = Cnab240::SegmentoZ
34
+ c = SegmentoZ
35
35
  obj = c.new
36
36
  linha1 = obj.linha
37
37
  obj2 = c.read(linha1)